struct

C 语言 typedef 写法

写法一

typedef struct Student  
{  
int a;  
}Stu;
Stu a[10];

写法二

typedef struct  
{  
int a;  
}Stu;
Stu a[10];

C++ 直接写

struct Student  
{  
int a;  
};
Student a[10];